Add feature alias for the latest OSTree version
authorFelix Krull <f_krull@gmx.de>
Thu, 31 Oct 2019 13:55:04 +0000 (14:55 +0100)
committerColin Walters <walters@verbum.org>
Fri, 6 May 2022 16:53:55 +0000 (12:53 -0400)
rust-bindings/rust/.gitlab-ci.yml
rust-bindings/rust/Cargo.toml

index 5434cb58a677619381f19ff131440c64006d8216..dbc27fd5a2cd8d2c9a12a73b6e5387efa00a1d75 100644 (file)
@@ -6,7 +6,6 @@ variables:
   CARGO_HOME: ${CI_PROJECT_DIR}/cargo
   SCCACHE_DIR: ${CI_PROJECT_DIR}/sccache
   RUSTC_WRAPPER: sccache
-  OSTREE_VERSION: v2019_3
 
 before_script:
 - dnf install -y cargo rust clippy rustfmt git make ostree-devel
@@ -34,8 +33,8 @@ check:
 build_all-features:
   stage: build
   script:
-  - cargo clippy --all --features ${OSTREE_VERSION},futures -- -D warnings
-  - cargo test --verbose --all --features ${OSTREE_VERSION},futures
+  - cargo clippy --all --features latest,futures -- -D warnings
+  - cargo test --verbose --all --features latest,futures
 
 build_default-features:
   stage: build
index 0f61a62000ae76a150cb8a9f2545e9270d1c844f..724ff4c5a9749fec34bf9b17ddec7ba720848ddc 100644 (file)
@@ -81,3 +81,4 @@ v2018_7 = ["v2018_6", "ostree-sys/v2018_7"]
 v2018_9 = ["v2018_7", "ostree-sys/v2018_9"]
 v2019_2 = ["v2018_9", "ostree-sys/v2019_2"]
 v2019_3 = ["v2019_2", "ostree-sys/v2019_3"]
+latest = ["v2019_3"]